-
Notifications
You must be signed in to change notification settings - Fork 14
Adding Supervisord Header Config #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the CI/CD workflow configuration by adding a pull_request trigger to the workflow events.
- Added pull_request event under the workflow triggers in the CI/CD configuration
Files not reviewed (19)
- 8.0-nginx-prod/Dockerfile: Language not supported
- 8.0-nginx-prod/supervisor.conf: Language not supported
- 8.0-nginx/Dockerfile: Language not supported
- 8.0-nginx/supervisor.conf: Language not supported
- 8.1-nginx-prod/Dockerfile: Language not supported
- 8.1-nginx-prod/supervisor.conf: Language not supported
- 8.1-nginx/Dockerfile: Language not supported
- 8.1-nginx/supervisor.conf: Language not supported
- 8.2-nginx-prod/Dockerfile: Language not supported
- 8.2-nginx-prod/supervisor.conf: Language not supported
- 8.2-nginx/Dockerfile: Language not supported
- 8.2-nginx/supervisor.conf: Language not supported
- 8.3-nginx-prod/Dockerfile: Language not supported
- 8.3-nginx-prod/supervisor.conf: Language not supported
- 8.3-nginx/Dockerfile: Language not supported
- 8.3-nginx/supervisor.conf: Language not supported
- 8.4-nginx-prod/Dockerfile: Language not supported
- 8.4-nginx-prod/supervisor.conf: Language not supported
- 8.4-nginx/Dockerfile: Language not supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 19 out of 19 changed files in this pull request and generated 10 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This pull request introduces improvements to the CI/CD workflow and simplifies the Docker images for multiple PHP-Nginx versions by replacing manual installation of
supervisordwith package manager installation and adding a newsupervisor.confconfiguration file.CI/CD Workflow Updates:
pull_requestas a trigger in the CI/CD workflow configuration to enable testing for pull requests. (.github/workflows/ci-cd.yml, .github/workflows/ci-cd.ymlR6)Dockerfile Simplifications:
supervisordwith its installation via the package manager (apk add --no-cache nginx supervisord) across all PHP-Nginx versions (8.0,8.1,8.2,8.3,8.4) for both-prodand non--prodvariants. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Supervisor Configuration:
supervisor.conffile for all PHP-Nginx versions (8.0,8.1,8.2,8.3,8.4) to configuresupervisordwith logging to stdout and to run in no-daemon mode. This ensures better integration with containerized environments.